home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / effects / IEffectInstance.as < prev    next >
Text File  |  2014-03-27  |  2KB  |  79 lines

  1. package mx.effects
  2. {
  3.    import flash.events.Event;
  4.    import mx.effects.effectClasses.PropertyChanges;
  5.    
  6.    public interface IEffectInstance
  7.    {
  8.        
  9.       
  10.       function get playheadTime() : Number;
  11.       
  12.       function get triggerEvent() : Event;
  13.       
  14.       function set triggerEvent(param1:Event) : void;
  15.       
  16.       function get hideFocusRing() : Boolean;
  17.       
  18.       function initEffect(param1:Event) : void;
  19.       
  20.       function set startDelay(param1:int) : void;
  21.       
  22.       function get effectTargetHost() : IEffectTargetHost;
  23.       
  24.       function finishEffect() : void;
  25.       
  26.       function set hideFocusRing(param1:Boolean) : void;
  27.       
  28.       function finishRepeat() : void;
  29.       
  30.       function set repeatDelay(param1:int) : void;
  31.       
  32.       function get effect() : IEffect;
  33.       
  34.       function startEffect() : void;
  35.       
  36.       function get duration() : Number;
  37.       
  38.       function get target() : Object;
  39.       
  40.       function get startDelay() : int;
  41.       
  42.       function stop() : void;
  43.       
  44.       function set effectTargetHost(param1:IEffectTargetHost) : void;
  45.       
  46.       function set propertyChanges(param1:PropertyChanges) : void;
  47.       
  48.       function set effect(param1:IEffect) : void;
  49.       
  50.       function get className() : String;
  51.       
  52.       function set duration(param1:Number) : void;
  53.       
  54.       function set target(param1:Object) : void;
  55.       
  56.       function end() : void;
  57.       
  58.       function resume() : void;
  59.       
  60.       function get propertyChanges() : PropertyChanges;
  61.       
  62.       function set repeatCount(param1:int) : void;
  63.       
  64.       function reverse() : void;
  65.       
  66.       function get repeatCount() : int;
  67.       
  68.       function pause() : void;
  69.       
  70.       function get repeatDelay() : int;
  71.       
  72.       function set suspendBackgroundProcessing(param1:Boolean) : void;
  73.       
  74.       function play() : void;
  75.       
  76.       function get suspendBackgroundProcessing() : Boolean;
  77.    }
  78. }
  79.